Skip to content

Store adapter — Walmart Drop Ship Vendor

The adapter object contains properties for connecting to the Walmart Drop Ship Vendor API.

Parent object: a store with property "platform" : "walmart_drop_ship_vendor"

Required properties

The following adapter properties are required for Walmart Drop Ship Vendor stores.

consumer_channel_type

Propertyconsumer_channel_type
NameConsumer Channel Type
Data typestring
Required?Yes

consumer_id

Propertyconsumer_id
NameWalmart Consumer ID
Data typestring
Required?Yes

private_key

Propertyprivate_key
NameWalmart Private Key
Data typestring
Required?Yes

ship_node

Propertyship_node
NameWalmart Ship Node
Data typestring
Required?Yes

Example

Example: create a new Walmart Drop Ship Vendor store
curl -X POST \
    -H "Authorization: Bearer $JWT_TOKEN" \
    -H "Content-Type: application/json" \
    https://api.getdropstream.com/stores \
    -d @- <<EOF
{ "customer_id": "3775",
  "name": "Your Walmart Drop Ship Vendor Store",
  "platform": "walmart_drop_ship_vendor",
  "adapter": {
    "consumer_id": "abc123",
    "consumer_channel_type": "abc123",
    "private_key": "abc123",
    "ship_node": "abc123"
  }
}
EOF

For details about this request type, see: Create a new store.